home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 2
/
Apprentice-Release2.iso
/
Tools
/
Languages
/
Caml Light 0.61
/
Source
/
src
/
appli
/
rename.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-06-18
|
244 b
|
18 lines
|
[
TEXT/MPS
]
#include <StdLib.h>
#include <Fcntl.h>
int mpw_read(int fd, char * p, unsigned long n)
{
return read(fd, p, n);
}
int mpw_write(int fd, char * p, unsigned long n)
{
return write(fd, p, n);
}
void mpw_exit(int status)
{
exit(status);
}